選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

page.tsx 215B

1234567891011
  1. 'use client'
  2. import React from 'react'
  3. import EmbeddedChatbot from '@/app/components/base/chat/embedded-chatbot'
  4. const Chatbot = () => {
  5. return (
  6. <EmbeddedChatbot />
  7. )
  8. }
  9. export default React.memo(Chatbot)